BindingName Property (TreeMap<T>)
In This Topic
Gets or sets the name of the property containing name of the data item. It is used to show name of the node.
Syntax
'Declaration
Public Property BindingName As System.String()
'Usage
Dim instance As TreeMap(Of T)
Dim value() As System.String
instance.BindingName = value
value = instance.BindingName
public System.string[] BindingName {get; set;}
public read-write property BindingName: System.array of String;
public function get,set BindingName : System.String[]
public: __property System.string*[]* get_BindingName();
public: __property void set_BindingName(
System.string*[][]* value
);
public:
property System.array<String^>^ BindingName {
System.array<String^>^ get();
void set ( System.array<String^>^ value);
}
See Also